home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Show on Desktop.xpl < prev    next >
Text File  |  1999-07-21  |  3KB  |  116 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="5"
  4. "UIPATH"="Appearance\Desktop\Icons"
  5. "NAME"="Visible Icons #1"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.72"
  8. "TEXT 1"="Recyle Bin"
  9. "TEXT 2"="Internet Explorer (2.x/3.x)"
  10. "TEXT 3"="Internet Explorer (4.x/5.x)"
  11. "TEXT 4"="Inbox/Outlook"
  12. "TEXT 5"="Win 95 Dial-up Network"
  13. "DESCRIPTION 1"="To show an item on the desktop, activate it. To hide it, deactivate it."
  14. "DESCRIPTION 2"="It might be necessary to activate the desktop and pressing the F5 key in order to see the changes."
  15. "AUTHOR"="Xteq Systems"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  18. "COMMENT 2"=" "
  19. "COMMENT 3"="Thanks to Siegfried Burgstedt for his fix!"
  20.  
  21.  
  22.  
  23. sPath="HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\"
  24.  
  25. sTC="{645FF040-5081-101B-9F08-00AA002F954E}" 'Trashcan
  26. sIE="{FBF23B42-E3F0-101B-8488-00AA003E56F8}" 'Internet Explorer (old???)
  27. sIB="{00020D75-0000-0000-C000-000000000046}" 'Inbox
  28. sDN="{992CFFA0-F557-101A-88EC-00DD010CCC48}" 'Dial-up Network  
  29. sIE4="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoInternetIcon"
  30.  
  31. Sub Plugin_Initialize 
  32.  if RegPathExists(sPath & sTC) then SetUIElement 1,true
  33.  if RegPathExists(sPath & sIE) then SetUIElement 2,true
  34.  if RegPathExists(sPath & sIB) then SetUIElement 4,true
  35.  if RegPathExists(sPath & sDN) then SetUIElement 5,true
  36.  
  37.  'IE 4 stuff!
  38.  i=RegReadValue(sIE4)
  39.  if IsEmpty(i) or i="00000000" then SetUIElement 3,true
  40.  
  41.  
  42.  'if RegPathExists(sPath & sMN) then SetUIElement 5,true
  43.  'if RegPathExists(sPath & sM2) then SetUIElement 5,true
  44. End Sub
  45.  
  46. Sub Plugin_CheckData(ElementIndex)
  47. End Sub
  48.  
  49. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  50.  b=GetUIElement(1)
  51.  if b=true then
  52.   Call RegWriteValue(sPath & sTC & "\@","",1)
  53.  else
  54.   if RegPathExists(sPath & sTC) then
  55.    Call RegDeletePath(sPath & sTC)
  56.   end if
  57.  end if
  58.  
  59.  b=GetUIElement(2)
  60.  if b=true then
  61.   Call RegWriteValue(sPath & sIE & "\@","",1)
  62.  else
  63.   if RegPathExists(sPath & sIE) then
  64.    Call RegDeletePath(sPath & sIE)
  65.   end if
  66.  end if
  67.  
  68.  b=GetUIElement(3)
  69.  if b=true then
  70.   Call RegWriteValue(sIE4,"00000000",3)
  71.  else
  72.   Call RegWriteValue(sIE4,"01000000",3)  
  73.  end if
  74.  
  75.  b=GetUIElement(4)
  76.  if b=true then
  77.   Call RegWriteValue(sPath & sIB & "\@","",1)
  78.  else
  79.   if RegPathExists(sPath & sIB) then
  80.    Call RegDeletePath(sPath & sIB)
  81.   end if
  82.  end if
  83.  
  84.  b=GetUIElement(5)
  85.  if b=true then
  86.   Call RegWriteValue(sPath & sDN & "\@","",1)
  87.  else
  88.   if RegPathExists(sPath & sDN) then
  89.    Call RegDeletePath(sPath & sDN)
  90.   end if
  91.  end if
  92.  
  93.  Call Logoff
  94.  
  95. '//Old MSN Stuff!
  96. ' b=GetUIElement(5)
  97. ' if b=true then
  98. '  Call RegWriteValue(sPath & sMN & "\@","",1)
  99. ' else
  100. '  if RegPathExists(sPath & sMN) then
  101. '   Call RegDeletePath(sPath & sMN)
  102. '  end if
  103. '
  104. '  if RegPathExists(sPath & sM2) then
  105. '   Call RegDeletePath(sPath & sM2)
  106. '  end if   
  107. ' end if
  108. End Sub
  109.  
  110.  
  111. Sub Plugin_Terminate 
  112. End Sub
  113.  
  114.  
  115.  
  116.